home *** CD-ROM | disk | FTP | other *** search
- /* DeliTracker - open/close MainWindow */
-
- address 'rexx_DT'
- options results
-
-
- status G mwi
-
- if result == "no" then do
- openmainwin
- end
- else do
- closemainwin
- end
-
-
- status G mwi
-
- if result == "no" then do
- say "Main Window is now closed..."
- end
- else do
- say "Main Window is now open..."
- end
-
-